home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 1997-99 Pandemic Studios
- //
- // Dark Reign II
- //
-
-
- ///Player destroys the shuttle carrying traitor GC forces
-
- CreateObjectType("objective_patrol_hillpaths", "Objective")
- {
- GameObj();
- ObjectiveObj()
- {
- Condition("TRUE")
- {
- }
-
- Action()
- {
- ExecuteScript("patrol1", "squad.move.tagtotrail")
- {
- Op("%.tag", "=", "hillpath1");
- Op("%.trail", "=", "HillPath1");
- }
- ExecuteScript("patrol3", "squad.move.tagtotrail")
- {
- Op("%.tag", "=", "hillpath3");
- Op("%.trail", "=", "HillPath3");
- }
- ExecuteScript("patrol5", "squad.move.tagtotrail")
- {
- Op("%.tag", "=", "hillpath5");
- Op("%.trail", "=", "HillPath5");
- }
- ExecuteScript("patrol6", "squad.move.tagtotrail")
- {
- Op("%.tag", "=", "hillpath6");
- Op("%.trail", "=", "HillPath6");
- }
- ExecuteScript("patrol7", "squad.move.tagtotrail")
- {
- Op("%.tag", "=", "hillpath7");
- Op("%.trail", "=", "HillPath7");
- }
- }
- }
- }
-